-
Re: Images in Dropdown list
Jamie, Not yet, that I have found. http://help.smartsheet.com/customer/portal/articles/2262003 There is API functionality that could do that. Sorry to be the messenger. Craig1 · -
Re: Is there a way to re-designate the primary column after a Smartsheet has been developed and populate
There is no direct way to reassign the Primary Column. You'll need to: 1. create a tempoary column 2. copy/paste the data from Primary Column to the new column. 3. copy/paste the data from the column…1 · -
Re: SUMIF with check mark
=SUMIF([Have we paid for this container?]1:[Have we paid for this container?]100,1,[Cost]1:[Cost]100) =SUMIF(RANGE , CRITERIA , SUM_RANGE) You had )( instead of a comma. Craig1 · -
Re: Formula to calculate the Monday after a date
Project Plan? Are you using Dependencies? This formula returns the "NEXT Monday": =IF(WEEKDAY(Date@row) = 1, Date@row - (WEEKDAY(Date@row) - 2), Date@row - (WEEKDAY(Date@row) - 2) + 7) incl…1 · -
Re: Parent Sum IF
You don't use PARENT in this case. Column names with spaces (or special characters) need square brackets [] =SUMIFS([Resource Days]:[Resource Days], [Assigned To]:[Assigned To], "Craig Williams&…1 ·